home *** CD-ROM | disk | FTP | other *** search
/ Dictionaries & Language / Dictionaries and Language (Chestnut CD-ROM) (1993).iso / gloss / jargn298 / jargon-f.txt < prev    next >
Encoding:
Text File  |  1991-09-07  |  56.5 KB  |  1,096 lines

  1. = F =
  2. =====
  3.  
  4. fab: /fab/ [from `fabricate'] v. 1. To produce chips from a
  5.    design that may have been created by someone at another company.
  6.    Fabbing chips based on the designs of others is the activity of a
  7.    {silicon foundry}.  To a hacker, `fab' is practically never short
  8.    for `fabulous'.  2. `fab line': the production system
  9.    (lithography, diffusion, etching, etc.) for chips at a chip
  10.    manufacturer.  Different `fab lines' are run with different
  11.    process parameters, die sizes, or technologies, or simply to
  12.    provide more manufacturing volume.
  13.  
  14. face time: n. Time spent interacting with somebody face-to-face (as
  15.    opposed to via electronic links).  "Oh, yeah, I spent some face
  16.    time with him at the last Usenix."
  17.  
  18. factor: n. See {coefficient}.
  19.  
  20. fall over: [IBM] vi. Yet another synonym for {crash} or {lose}.
  21.    `Fall over hard' equates to {crash and burn}.
  22.  
  23. fall through: v. (n. `fallthrough', var. `fall-through') 1. To
  24.    exit a loop by exhaustion, i.e., by having fulfilled its exit
  25.    condition rather than via a break or exception condition that exits
  26.    from the middle of it.  This usage appears to be *really* old,
  27.    dating from the 1940s and 1950s.  2. To fail a test that would have
  28.    passed control to a subroutine or some other distant portion of code.
  29.    3. In C, `fall-through' occurs when the flow of execution in a
  30.    switch statement reaches a `case' label other than by jumping
  31.    there from the switch header, passing a point where one would
  32.    normally expect to find a `break'.  A trivial example:
  33.  
  34.      switch (color)
  35.      {
  36.      case GREEN:
  37.         do_green();
  38.         break;
  39.      case PINK:
  40.         do_pink();
  41.         /* FALL THROUGH */
  42.      case RED:
  43.         do_red();
  44.         break;
  45.      default:
  46.         do_blue();
  47.         break;
  48.      }
  49.  
  50.    The variant spelling `/* FALL THRU */' is also common.
  51.  
  52.    The effect of this code is to `do_green()' when color is
  53.    `GREEN', `do_red()' when color is `RED',
  54.    `do_blue()' on any other color other than `PINK', and
  55.    (and this is the important part) `do_pink()' *and then*
  56.    `do_red()' when color is `PINK'.  Fall-through is
  57.    {considered harmful} by some, though there are contexts (such as
  58.    the coding of state machines) in which it is natural; it is
  59.    generally considered good practice to include a comment
  60.    highlighting the fall-through where one would normally expect a
  61.    break.
  62.  
  63. fandango on core: [UNIX/C hackers, from the Mexican dance] n.
  64.    In C, a wild pointer that runs out of bounds, causing a {core
  65.    dump}, or corrupts the `malloc(3)' {arena} in such a way as
  66.    to cause mysterious failures later on, is sometimes said to have
  67.    `done a fandango on core'.  On low-end personal machines without an
  68.    MMU, this can corrupt the OS itself, causing massive lossage.
  69.    Other frenetic dances such as the rhumba, cha-cha, or watusi, may
  70.    be substituted.  See {aliasing bug}, {precedence lossage},
  71.    {smash the stack}, {memory leak}, {overrun screw},
  72.    {core}.
  73.  
  74. FAQ list: /F-A-Q list/ [USENET] n. A compendium of accumulated
  75.    lore, posted periodically to high-volume newsgroups in an attempt
  76.    to forestall Frequently Asked Questions.  This lexicon itself
  77.    serves as a good example of a collection of one kind of lore,
  78.    although it is far too big for a regular posting.  Examples: "What
  79.    is the proper type of NULL?"  and "What's that funny name for
  80.    the `#' character?" are both Frequently Asked Questions.
  81.    Several extant FAQ lists do (or should) make reference to the
  82.    Jargon File (the on-line version of this lexicon).
  83.  
  84. FAQL: /fa'kl/ n. Syn. {FAQ list}.
  85.  
  86. farming: [Adelaide University, Australia] n. What the heads of a
  87.    disk drive are said to do when they plow little furrows in the
  88.    magnetic media.  Associated with a {crash}.  Typically used as
  89.    follows: "Oh no, the machine has just crashed; I hope the hard
  90.    drive hasn't gone {farming} again."
  91.  
  92. fascist: adj. 1. Said of a computer system with excessive or
  93.    annoying security barriers, usage limits, or access policies.  The
  94.    implication is that said policies are preventing hackers from
  95.    getting interesting work done.  The variant `fascistic' seems
  96.    to have been preferred at MIT, poss. by analogy with
  97.    `touristic' (see {tourist}).  2. In the design of languages
  98.    and other software tools, `the fascist alternative' is the most
  99.    restrictive and structured way of capturing a particular function;
  100.    the implication is that this may be desirable in order to simplify
  101.    the implementation or provide tighter error checking.  Compare
  102.    {bondage-and-discipline language}, but that term is global rather
  103.    than local.
  104.  
  105. faulty: adj. Non-functional; buggy.  Same denotation as
  106.    {bletcherous}, {losing}, q.v., but the connotation is much
  107.    milder.
  108.  
  109. fd leak: /ef dee leek/ n. A kind of programming bug analogous to a
  110.    {core leak}, in which a program fails to close file descriptors
  111.    (`fd's) after file operations are completed, and thus eventually
  112.    runs out of them.  See {leak}.
  113.  
  114. fear and loathing: [from Hunter Thompson] n. A state inspired by the
  115.    prospect of dealing with certain real-world systems and standards
  116.    that are totally {brain-damaged} but ubiquitous --- Intel 8086s,
  117.    or {COBOL}, or {{EBCDIC}}, or any {IBM} machine except the
  118.    Rios (a.k.a.  the RS/6000).  "Ack!  They want PCs to be able to
  119.    talk to the AI machine.  Fear and loathing time!"
  120.  
  121. feature: n. 1. A good property or behavior (as of a program).
  122.    Whether it was intended or not is immaterial.  2. An intended
  123.    property or behavior (as of a program).  Whether it is good or not
  124.    is immaterial (but if bad, it is also a {misfeature}).  3. A
  125.    surprising property or behavior; in particular, one that is
  126.    purposely inconsistent because it works better that way --- such an
  127.    inconsistency is therefore a {feature} and not a {bug}.  This
  128.    kind of feature is sometimes called a {miswart}; see that entry
  129.    for a classic example.  4. A property or behavior that is
  130.    gratuitous or unnecessary, though perhaps also impressive or cute.
  131.    For example, one feature of Common LISP's `format' function is
  132.    the ability to print numbers in two different Roman-numeral formats
  133.    (see {bells, whistles, and gongs}).  5. A property or behavior
  134.    that was put in to help someone else but that happens to be in your
  135.    way.  6. A bug that has been documented.  To call something a
  136.    feature sometimes means the author of the program did not consider
  137.    the particular case, and that the program responded in a way that was
  138.    unexpected but not strictly incorrect.  A standard joke is that a
  139.    bug can be turned into a {feature} simply by documenting it
  140.    (then theoretically no one can complain about it because it's in
  141.    the manual), or even by simply declaring it to be good.  "That's
  142.    not a bug, that's a feature!" is a common catchphrase.  See also
  143.    {feetch feetch}, {creeping featurism}, {wart}, {green
  144.    lightning}.
  145.  
  146.    The relationship among bugs, features, misfeatures, warts, and
  147.    miswarts might be clarified by the following hypothetical exchange
  148.    between two hackers on an airliner:
  149.  
  150.    A: "This seat doesn't recline."
  151.  
  152.    B: "That's not a bug, that's a feature.  There is an emergency
  153.    exit door built around the window behind you, and the route has to
  154.    be kept clear."
  155.  
  156.    A: "Oh.  Then it's a misfeature; they should have increased the
  157.    spacing between rows here."
  158.  
  159.    B: "Yes.  But if they'd increased spacing in only one section it
  160.    would have been a wart --- they would've had to make
  161.    nonstandard-length ceiling panels to fit over the displaced
  162.    seats."
  163.  
  164.    A: "A miswart, actually.  If they increased spacing throughout
  165.    they'd lose several rows and a chunk out of the profit margin.  So
  166.    unequal spacing would actually be the Right Thing."
  167.  
  168.    B: "Indeed."
  169.  
  170.    {Undocumented feature} is a common, allegedly humorous euphemism
  171.    for a {bug}.
  172.  
  173. feature creature: [poss. fr. slang `creature feature' for a horror
  174.    movie] n. One who loves to add features to designs or programs,
  175.    perhaps at the expense of coherence, concision, or {taste}.  See
  176.    also {feeping creaturism}, {creeping featurism}.
  177.  
  178. feature shock: [from Alvin Toffler's book title `Future
  179.    Shock'] n.  A user's (or programmer's!) confusion when confronted
  180.    with a package that has too many features and poor introductory
  181.    material.
  182.  
  183. featurectomy: /fee`ch*r-ek't*-mee/ n. The act of removing a
  184.    feature from a program.  Featurectomies come in two flavors, the
  185.    `righteous' and the `reluctant'.  Righteous featurectomies are
  186.    performed because the remover believes the program would be more
  187.    elegant without the feature, or there is already an equivalent and
  188.    better way to achieve the same end.  (This is not quite the same
  189.    thing as removing a {misfeature}.)  Reluctant featurectomies are
  190.    performed to satisfy some external constraint such as code size or
  191.    execution speed.
  192.  
  193. feep: /feep/ 1. n. The soft electronic `bell' sound of a
  194.    display terminal (except for a VT-52); a beep (in fact, the
  195.    microcomputer world seems to prefer {beep}).  2. vi. To cause
  196.    the display to make a feep sound.  ASR-33s (the original TTYs) do
  197.    not feep; they have mechanical bells that ring.  Alternate forms:
  198.    {beep}, `bleep', or just about anything suitably
  199.    onomatopoeic.  (Jeff MacNelly, in his comic strip "Shoe", uses
  200.    the word `eep' for sounds made by computer terminals and video
  201.    games; this is perhaps the closest written approximation yet.)  The
  202.    term `breedle' was sometimes heard at SAIL, where the terminal
  203.    bleepers are not particularly soft (they sound more like the
  204.    musical equivalent of a raspberry or Bronx cheer; for a close
  205.    approximation, imagine the sound of a Star Trek communicator's beep
  206.    lasting for 5 seconds).  The `feeper' on a VT-52 has been
  207.    compared to the sound of a '52 Chevy stripping its gears.  See also
  208.    {ding}.
  209.  
  210. feeper: /fee'pr/ n. The device in a terminal or workstation (usually
  211.    a loudspeaker of some kind) that makes the {feep} sound.
  212.  
  213. feeping creature: [from {feeping creaturism}] n. An unnecessary
  214.    feature; a bit of {chrome} that, in the speaker's judgment, is
  215.    the camel's nose for a whole horde of new features.
  216.  
  217. feeping creaturism: /fee'ping kree`ch*r-izm/ n. A deliberate
  218.    spoonerism for {creeping featurism}, meant to imply that the
  219.    system or program in question has become a misshapen creature of
  220.    hacks.  This term isn't really well defined, but it sounds so neat
  221.    that most hackers have said or heard it.  It is probably reinforced
  222.    by an image of terminals prowling about in the dark making their
  223.    customary noises.
  224.  
  225. feetch feetch: /feech feech/ interj. If someone tells you about
  226.    some new improvement to a program, you might respond: "Feetch,
  227.    feetch!"  The meaning of this depends critically on vocal
  228.    inflection.  With enthusiasm, it means something like "Boy, that's
  229.    great!  What a great hack!"  Grudgingly or with obvious doubt, it
  230.    means "I don't know; it sounds like just one more unnecessary and
  231.    complicated thing".  With a tone of resignation, it means, "Well,
  232.    I'd rather keep it simple, but I suppose it has to be done".
  233.  
  234. fence: n. 1. A sequence of one or more distinguished
  235.    ({out-of-band}) characters (or other data items), used to
  236.    delimit a piece of data intended to be treated as a unit (the
  237.    computer-science literature calls this a `sentinel').  The NUL
  238.    (ASCII 0000000) character that terminates strings in C is a fence.
  239.    Hex FF is probably the most common fence character after NUL.  See
  240.    {zigamorph}.  2. [among users of optimizing compilers] Any
  241.    technique, usually exploiting knowledge about the compiler, that
  242.    blocks certain optimizations.  Used when explicit mechanisms are
  243.    not available or are overkill.  Typically a hack: "I call a dummy
  244.    procedure there to force a flush of the optimizer's
  245.    register-coloring info" can be expressed by the shorter "That's a
  246.    fence procedure".
  247.  
  248. fencepost error: n. 1. A problem with the discrete equivalent of a
  249.    boundary condition.  Often exhibited in programs by iterative
  250.    loops.  From the following problem: "If you build a fence 100 feet
  251.    long with posts 10 feet apart, how many posts do you need?"
  252.    Either 9 or 11 is a better answer than the obvious 10.  For
  253.    example, suppose you have a long list or array of items, and want
  254.    to process items m through n; how many items are there?  The
  255.    obvious answer is n - m, but that is off by one; the right
  256.    answer is n - m + 1.  A program that used the `obvious'
  257.    formula would have a fencepost error in it.  See also {zeroth}
  258.    and {off-by-one error}, and note that not all off-by-one errors
  259.    are fencepost errors.  The game of Musical Chairs involves a
  260.    catastrophic off-by-one error where N people try to sit in
  261.    N - 1 chairs, but it's not a fencepost error.  Fencepost
  262.    errors come from counting things rather than the spaces between
  263.    them, or vice versa, or by neglecting to consider whether one
  264.    should count one or both ends of a row.  2. Occasionally, an error
  265.    induced by unexpectedly regular spacing of inputs, which can (for
  266.    instance) screw up your hash table.
  267.  
  268. fepped out: /fept owt/ adj. The Symbolics 3600 Lisp Machine has a
  269.    Front-End Processor called a `FEP' (compare sense 2 of {box}).
  270.    When the main processor gets {wedged}, the FEP takes control of
  271.    the keyboard and screen.  Such a machine is said to have
  272.    `fepped out'.
  273.  
  274. FidoNet: n. A worldwide hobbyist network of personal computers
  275.    which exchange mail, discussion groups, and files.  Founded in 1984
  276.    and originally consisting only of IBM PCs and compatibles, FidoNet
  277.    now includes such diverse machines as Apple ][s, Ataris, Amigas,
  278.    and UNIX systems.  Though it is much younger than {USENET},
  279.    FidoNet is already (in early 1991) a significant fraction of
  280.    USENET's size at some 8000 systems.
  281.  
  282. field circus: [a derogatory pun on `field service'] n. The field
  283.    service organization of any hardware manufacturer, but especially
  284.    DEC.  There is an entire genre of jokes about DEC field circus
  285.    engineers:
  286.  
  287.      Q: How can you recognize a DEC field circus engineer
  288.         with a flat tire?
  289.      A: He's changing each tire to see which one is flat.
  290.  
  291.      Q: How can you recognize a DEC field circus engineer
  292.         who is out of gas?
  293.      A: He's changing each tire to see which one is flat.
  294.  
  295.    There is also the `Field Circus Cheer' (from the {plan file} for
  296.    DEC on MIT-AI):
  297.  
  298.      Maynard! Maynard!
  299.      Don't mess with us!
  300.      We're mean and we're tough!
  301.      If you get us confused
  302.      We'll screw up your stuff.
  303.  
  304.    (DEC's service HQ is located in Maynard, Massachusetts.)
  305.  
  306. field servoid: [play on `android'] /fee'ld ser'voyd/ n.
  307.    Representative of a field service organization (see {field
  308.    circus}).  This has many of the implications of {droid}.
  309.  
  310. Fight-o-net: [FidoNet] n. Deliberate distortion of {FidoNet},
  311.    often applied after a flurry of {flamage} in a particular
  312.    {echo}, especially the SYSOP echo or Fidonews (see {'Snooze}).
  313.  
  314. File Attach: [FidoNet] 1. n. A file sent along with a mail message
  315.    from one BBS to another.  2. vt. Sending someone a file by using
  316.    the File Attach option in a BBS mailer.
  317.  
  318. File Request: [FidoNet] 1. n. The {FidoNet} equivalent of
  319.    {FTP}, in which one BBS system automatically dials another and
  320.    {snarf}s one or more files.  Files are often announced as being
  321.    "available for {FReq}" in the same way that files are announced
  322.    as being "available for/by anonymous FTP" on the Internet.
  323.    2. vt. The act of getting a copy of a file by using the File
  324.    Request option of the BBS mailer.
  325.  
  326. filk: /filk/ [from SF fandom, where a typo for `folk' was
  327.    adopted as a new word] n.,v. A `filk' is a popular or folk song
  328.    with lyrics revised or completely new lyrics, intended for humorous
  329.    effect when read and/or to be sung late at night at SF conventions.
  330.    There is a flourishing subgenre of these called `computer filks',
  331.    written by hackers and often containing rather sophisticated
  332.    technical humor.  See {double bucky} for an example.
  333.  
  334. film at 11: [MIT: in parody of TV newscasters] Used in conversation
  335.    to announce ordinary events, with a sarcastic implication that
  336.    these events are earth-shattering.  "{{ITS}} crashes; film at 11."
  337.    "Bug found in scheduler; film at 11."
  338.  
  339. filter: [orig. {{UNIX}}, now also in {{MS-DOS}}] n. A program that
  340.    processes an input data stream into an output data stream in some
  341.    well-defined way, and does no I/O to anywhere else except possibly
  342.    on error conditions; one designed to be used as a stage in a
  343.    `pipeline' (see {plumbing}).
  344.  
  345. Finagle's Law: n. The generalized or `folk' version of
  346.    {Murphy's Law}, fully named "Finagle's Law of Dynamic
  347.    Negatives" and usually rendered "Anything that can go wrong,
  348.    will".  One variant favored among hackers is "The perversity of
  349.    the Universe tends towards a maximum" (but see also {Hanlon's
  350.    Razor}).  The label `Finagle's Law' was popularized by SF author
  351.    Larry Niven in several stories depicting a frontier culture of
  352.    asteroid miners; this `Belter' culture professed a religion
  353.    and/or running joke involving the worship of the dread god Finagle
  354.    and his mad prophet Murphy.
  355.  
  356. fine: [WPI] adj. Good, but not good enough to be {cuspy}.  The word
  357.    `fine' is used elsewhere, of course, but without the implicit
  358.    comparison to the higher level implied by {cuspy}.
  359.  
  360. finger: [WAITS, via BSD UNIX] 1. n. A program that displays a
  361.    particular user or all users logged on the system or a remote
  362.    system.  Typically shows full name, last login time, idle time,
  363.    terminal line, and terminal location (where applicable).  May also
  364.    display a {plan file} left by the user.  2. vt. To apply finger
  365.    to a username.  3. vt. By extension, to check a human's current
  366.    state by any means.  "Foodp?"  "T!"  "OK, finger Lisa and see
  367.    if she's idle."  4. Any picture (composed of ASCII characters)
  368.    depicting `the finger'.  Originally a humorous component of one's
  369.    plan file to deter the curious fingerer (sense 2), it has entered
  370.    the arsenal of some {flamer}s.
  371.  
  372. finger-pointing syndrome: n. All-too-frequent result of bugs, esp.
  373.    in new or experimental configurations.  The hardware vendor points
  374.    a finger at the software.  The software vendor points a finger
  375.    at the hardware.  All the poor users get is the finger.
  376.  
  377. firebottle: n. A large, primitive, power-hungry active electrical
  378.    device, similar in function to a FET but constructed out of glass,
  379.    metal, and vacuum.  Characterized by high cost, low density, low
  380.    reliability, high-temperature operation, and high power
  381.    dissipation.  Sometimes mistakenly called a `tube' in the U.S.
  382.    or a `valve' in England; another hackish term is {glassfet}.
  383.  
  384. firefighting: n. 1. What sysadmins have to do to correct sudden
  385.    operational problems.  An opposite of hacking.  "Been hacking your
  386.    new newsreader?"  "No, a power glitch hosed the network and I spent
  387.    the whole afternoon fighting fires."  2. The act of throwing lots
  388.    of manpower and late nights at a project, esp. to get it out
  389.    before deadline.  See also {gang bang}, {Mongolian Hordes
  390.    technique}; however, the term `firefighting' connotes that the
  391.    effort is going into chasing bugs rather than adding features.
  392.  
  393. firewall code: n. The code you put in a system (say, a telephone
  394.    switch) to make sure that the users can't do any damage. Since
  395.    users always want to be able to do everything but never want to
  396.    suffer for any mistakes, the construction of a firewall is a
  397.    question not only of defensive coding but also of interface
  398.    presentation, so that users don't even get curious about those
  399.    corners of a system where they can burn themselves.
  400.  
  401. firewall machine: n. A dedicated gateway machine with special
  402.    security precautions on it, used to service outside network
  403.    connections and dial-in lines.  The idea is to protect a cluster of
  404.    more loosely administered machines hidden behind it from
  405.    {cracker}s.  The typical firewall is an inexpensive micro-based
  406.    UNIX box kept clean of critical data, with a bunch of modems and
  407.    public network ports on it but just one carefully watched
  408.    connection back to the rest of the cluster.  The special
  409.    precautions may include threat monitoring, callback, and even a
  410.    complete {iron box} keyable to particular incoming IDs or
  411.    activity patterns.  Syn. {flytrap}, {Venus flytrap}.
  412.  
  413. fireworks mode: n. The mode a machine is sometimes said to be in when
  414.    it is performing a {crash and burn} operation.
  415.  
  416. firmy: /fer'mee/ Syn. {stiffy} (a 3.5-inch floppy disk).
  417.  
  418. fish: [Adelaide University, Australia] n. 1. Another metasyntactic
  419.    variable.  See {foo}.  Derived originally from the Monty Python
  420.    skit in the middle of "The Meaning of Life" entitled "Find the
  421.    Fish".  2. A pun for `microfiche'.  A microfiche file cabinet may be
  422.    referred to as a `fish tank'.
  423.  
  424. FISH queue: [acronym, by analogy with FIFO (First In, First Out)]
  425.    n. `First In, Still Here'.  A joking way of pointing out that
  426.    processing of a particular sequence of events or requests has
  427.    stopped dead.  Also `FISH mode' and `FISHnet'; the latter
  428.    may be applied to any network that is running really slowly or
  429.    exhibiting extreme flakiness.
  430.  
  431. fix: n.,v. What one does when a problem has been reported too many
  432.    times to be ignored.
  433.  
  434. flag: n. A variable or quantity that can take on one of two
  435.    values; a bit, particularly one that is used to indicate one of two
  436.    outcomes or is used to control which of two things is to be done.
  437.    "This flag controls whether to clear the screen before printing
  438.    the message."  "The program status word contains several flag
  439.    bits."  Used of humans analogously to {bit}.  See also
  440.    {hidden flag}, {mode bit}.
  441.  
  442. flag day: n. A software change that is neither forward- nor
  443.    backward-compatible, and which is costly to make and costly to
  444.    reverse.  "Can we install that without causing a flag day for all
  445.    users?"  This term has nothing to do with the use of the word
  446.    {flag} to mean a variable that has two values.  It came into use
  447.    when a massive change was made to the {{Multics}} timesharing
  448.    system to convert from the old ASCII code to the new one; this was
  449.    scheduled for Flag Day (a U.S. holiday), June 14, 1966.  See also
  450.    {backward combatability}.
  451.  
  452. flaky: adj. (var sp. `flakey') Subject to frequent {lossage}.
  453.    This use is of course related to the common slang use of the word
  454.    to describe a person as eccentric, crazy, or just unreliable.  A
  455.    system that is flaky is working, sort of --- enough that you are
  456.    tempted to try to use it --- but fails frequently enough that the
  457.    odds in favor of finishing what you start are low.  Commonwealth
  458.    hackish prefers {dodgy} or {wonky}.
  459.  
  460. flamage: /flay'm*j/ n. Flaming verbiage, esp. high-noise,
  461.    low-signal postings to {USENET} or other electronic {fora}.
  462.    Often in the phrase `the usual flamage'.  `Flaming' is the act
  463.    itself; `flamage' the content; a `flame' is a single flaming
  464.    message.  See {flame}.
  465.  
  466. flame: 1. vi. To post an email message intended to insult and
  467.    provoke.  2. vi. To speak incessantly and/or rabidly on some
  468.    relatively uninteresting subject or with a patently ridiculous
  469.    attitude.  3. vt. Either of senses 1 or 2, directed with
  470.    hostility at a particular person or people.  4. n. An instance of
  471.    flaming.  When a discussion degenerates into useless controversy,
  472.    one might tell the participants "Now you're just flaming" or
  473.    "Stop all that flamage!" to try to get them to cool down (so to
  474.    speak).
  475.  
  476.    USENETter Marc Ramsey, who was at WPI from 1972 to 1976, adds: "I
  477.    am 99% certain that the use of `flame' originated at WPI.  Those
  478.    who made a nuisance of themselves insisting that they needed to use
  479.    a TTY for `real work' came to be known as `flaming asshole lusers'.
  480.    Other particularly annoying people became `flaming asshole ravers',
  481.    which shortened to `flaming ravers', and ultimately `flamers'.  I
  482.    remember someone picking up on the Human Torch pun, but I don't
  483.    think `flame on/off' was ever much used at WPI."  See also
  484.    {asbestos}.
  485.  
  486.    The term may have been independently invented at several different
  487.    places; it is also reported that `flaming' was in use to mean
  488.    something like `interminably drawn-out semi-serious discussions'
  489.    (late-night bull sessions) at Carleton College during 1968--1971.
  490.  
  491. flame bait: n. A posting intended to trigger a {flame war}, or one
  492.    that invites flames in reply.
  493.  
  494. flame on: vi.,interj.  1. To begin to {flame}.  The punning
  495.    reference to Marvel Comics's Human Torch is no longer widely
  496.    recognized.  2. To continue to flame.  See {rave}, {burble}.
  497.  
  498. flame war: n. (var. `flamewar') An acrimonious dispute,
  499.    especially when conducted on a public electronic forum such as
  500.    {USENET}.
  501.  
  502. flamer: n. One who habitually {flame}s.  Said esp. of obnoxious
  503.    {USENET} personalities.
  504.  
  505. flap: vt. 1. To unload a DECtape (so it goes flap, flap,
  506.    flap...).  Old-time hackers at MIT tell of the days when the
  507.    disk was device 0 and {microtape}s were 1, 2,... and
  508.    attempting to flap device 0 would instead start a motor banging
  509.    inside a cabinet near the disk.  2. By extension, to unload any
  510.    magnetic tape.  See also {macrotape}.  Modern cartridge tapes no
  511.    longer actually flap, but the usage has remained.
  512.  
  513. flarp: /flarp/ [Rutgers University] n. Yet another metasyntactic
  514.    variable (see {foo}).  Among those who use it, it is associated
  515.    with a legend that any program not containing the word `flarp'
  516.    somewhere will not work.  The legend is discreetly silent on the
  517.    reliability of programs which *do* contain the magic word.
  518.  
  519. flat: adj. 1. Lacking any complex internal structure.  "That
  520.    {bitty box} has only a flat filesystem, not a hierarchical
  521.    one."  The verb form is {flatten}.  2. Said of a memory
  522.    architecture (like that of the VAX or 680x0) that is one big linear
  523.    address space (typically with each possible value of a processor
  524.    register corresponding to a unique core address), as opposed to a
  525.    `segmented' architecture (like that of the 80x86) in which
  526.    addresses are composed from a base-register/offset pair (segmented
  527.    designs are generally considered {cretinous}).
  528.  
  529. flat-ASCII: adj. Said of a text file that contains only 7-bit ASCII
  530.    characters and uses only ASCII-standard control characters (that
  531.    is, has no embedded codes specific to a particular text formatter
  532.    or markup language, and no {meta}-characters).  Syn.
  533.    {plain-ASCII}.  Compare {flat-file}.
  534.  
  535. flat-file: adj. A {flatten}ed representation of some database or
  536.    tree or network structure as a single file from which the
  537.    structure could implicitly be rebuilt, esp. one in {flat-ASCII}
  538.    form.
  539.  
  540. flatten: vt. To remove structural information, esp. to filter
  541.    something with an implicit tree structure into a simple sequence of
  542.    leaves; also tends to imply mapping to {flat-ASCII}.  "This code
  543.    flattens an expression with parentheses into an equivalent
  544.    {canonical} form."
  545.  
  546. flavor: n. 1. Variety, type, kind.  "DDT commands come in two
  547.    flavors."  "These lights come in two flavors, big red ones and
  548.    small green ones."  See {vanilla}.  2. The attribute that causes
  549.    something to be {flavorful}.  Usually used in the phrase "yields
  550.    additional flavor".  "This convention yields additional flavor by
  551.    allowing one to print text either right-side-up or upside-down."
  552.    See {vanilla}.  This usage was certainly reinforced by the
  553.    terminology of quantum chromodynamics, in which quarks (the
  554.    constituents of, e.g., protons) come in six flavors (up, down,
  555.    strange, charm, top, bottom) and three colors (red, blue, green)
  556.    --- however, hackish use of `flavor' at MIT predated QCD.  3. The
  557.    term for `class' (in the object-oriented sense) in the LISP Machine
  558.    Flavors system.  Though the Flavors design has been superseded
  559.    (notably by the Common LISP CLOS facility), the term `flavor' is
  560.    still used as a general synonym for `class' by some LISP hackers.
  561.  
  562. flavorful: adj. Full of {flavor}; esthetically pleasing.  See
  563.    {random} and {losing} for antonyms.  See also the entries for
  564.    {taste} and {elegant}.
  565.  
  566. flippy: /flip'ee/ n. A single-sided floppy disk altered for
  567.    double-sided use by addition of a second write-notch, so called
  568.    because it must be flipped over for the second side to be
  569.    accessible.  No longer common.
  570.  
  571. flowchart:: [techspeak] n. An archaic form of visual control-flow
  572.    specification employing arrows and `speech balloons' of various
  573.    shapes.  Hackers never use flowcharts, consider them extremely
  574.    silly, and associate them with {COBOL} programmers, {card
  575.    walloper}s, and other lower forms of life.  This is because (from a
  576.    hacker's point of view) they are no easier to read than code, are
  577.    less precise, and tend to fall out of sync with the code (so that
  578.    they either obfuscate it rather than explaining it or require
  579.    extra maintenance effort that doesn't improve the code).  See also
  580.    {pdl}, sense 3.
  581.  
  582. flower key: [Mac users] n. See {command key}.
  583.  
  584. flush: v. 1. To delete something, usually superfluous, or to abort
  585.    an operation.  "All that nonsense has been flushed."  2. [UNIX/C]
  586.    To force buffered I/O to disk, as with an `fflush(3)' call.
  587.    This is *not* an abort or deletion as in sense 1, but a
  588.    demand for early completion!  3. To leave at the end of a day's
  589.    work (as opposed to leaving for a meal).  "I'm going to flush
  590.    now."  "Time to flush."  4. To exclude someone from an activity,
  591.    or to ignore a person.
  592.  
  593.    `Flush' was standard ITS terminology for aborting an output
  594.    operation; one spoke of the text that would have been printed, but
  595.    was not, as having been flushed.  It is speculated that this term
  596.    arose from a vivid image of flushing unwanted characters by hosing
  597.    down the internal output buffer, washing the characters away before
  598.    they can be printed.  The UNIX/C usage, on the other hand, was
  599.    propagated by the `fflush(3)' call in C's standard I/O library
  600.    (though it is reported to have been in use among BLISS programmers
  601.    at DEC and on Honeywell and IBM machines as far back as 1965).
  602.    UNIX/C hackers find the ITS usage confusing, and vice versa.
  603.  
  604. Flyspeck 3: n. Standard name for any font that is so tiny as to be
  605.    unreadable (by analogy with such names as `Helvetica 10' for
  606.    10-point Helvetica).  Legal boilerplate is usually printed in
  607.    Flyspeck 3.
  608.  
  609. flytrap: n. See {firewall machine}.
  610.  
  611. FOAF: // [USENET] n. Acronym for `Friend Of A Friend'.  The
  612.    source of an unverified, possibly untrue story.  This was not
  613.    originated by hackers (it is used in Jan Brunvand's books on urban
  614.    folklore), but is much better recognized on USENET and elsewhere
  615.    than in mainstream English.
  616.  
  617. FOD: /fod/ v. [Abbreviation for `Finger of Death', originally a
  618.    spell-name from fantasy gaming] To terminate with extreme prejudice
  619.    and with no regard for other people.  From {MUD}s where the
  620.    wizard command `FOD <player>' results in the immediate and total
  621.    death of <player>, usually as punishment for obnoxious behavior.
  622.    This migrated to other circumstances, such as "I'm going to fod
  623.    the process that is burning all the cycles."  Compare {gun}.
  624.  
  625.    In aviation, FOD means Foreign Object Damage, e.g., what happens
  626.    when a jet engine sucks up a rock on the runway or a bird in
  627.    flight.  Finger of Death is a distressingly apt description of
  628.    what this does to the engine.
  629.  
  630. fold case: v. See {smash case}.  This term tends to be used
  631.    more by people who don't mind that their tools smash case.  It also
  632.    connotes that case is ignored but case distinctions in data
  633.    processed by the tool in question aren't destroyed.
  634.  
  635. followup: n. On USENET, a {posting} generated in response to
  636.    another posting (as opposed to a {reply}, which goes by email
  637.    rather than being broadcast).  Followups include the ID of the
  638.    {parent message} in their headers; smart news-readers can use
  639.    this information to present USENET news in `conversation' sequence
  640.    rather than order-of-arrival.  See {thread}.
  641.  
  642. foo: /foo/ 1. interj. Term of disgust.  2. Used very generally
  643.    as a sample name for absolutely anything, esp. programs and files
  644.    (esp. scratch files).  3. First on the standard list of
  645.    metasyntactic variables used in syntax examples.  See also
  646.    {bar}, {baz}, {qux}, {quux}, {corge}, {grault},
  647.    {garply}, {waldo}, {fred}, {plugh}, {xyzzy},
  648.    {thud}.
  649.  
  650.    {foo} is the {canonical} example of a `metasyntactic
  651.    variable' --- a name used in examples and understood to stand for
  652.    whatever thing is under discussion, or any random member of a class
  653.    of things under discussion.  To avoid confusion, hackers never use
  654.    `foo' or other words like it as permanent names for anything.  In
  655.    filenames, a common convention is that any filename beginning
  656.    `foo' is a scratch file that may be deleted at any time.
  657.  
  658.    The etymology of hackish `foo' is obscure.  When used in
  659.    connection with `bar' it is generally traced to the WWII-era Army
  660.    slang acronym FUBAR (`Fucked Up Beyond All Recognition'), later
  661.    bowdlerized to {foobar}.  (See also {FUBAR}).
  662.  
  663.    However, the use of the word `foo' itself has more complicated
  664.    antecedents, including a long history in comic strips and cartoons.
  665.    The old "Smokey Stover" comic strips by Bill Holman often
  666.    included the word `FOO', in particular on license plates of cars;
  667.    allegedly, `FOO' and `BAR' also occurred in Walt Kelly's
  668.    "Pogo" strips.  In the 1938 cartoon "Daffy Doc", a very
  669.    early version of Daffy Duck holds up a sign saying "SILENCE IS
  670.    FOO!"; oddly, this seems to refer to some approving or positive
  671.    affirmative use of foo.  It is even possible that hacker usage
  672.    actually springs from `FOO, Lampoons and Parody', the title of
  673.    a comic book first issued in September 1958; the byline read
  674.    `C. Crumb' but this may well have been a sort-of pseudonym for
  675.    noted weird-comix artist Robert Crumb.  The title FOO was featured
  676.    in large letters on the front cover.
  677.  
  678.    An old-time member reports that in the 1959 `Dictionary of the
  679.    TMRC Language', compiled at {TMRC} there was an entry that went
  680.    something like this:
  681.  
  682.         FOO: The first syllable of the sacred chant phrase "FOO MANE PADME
  683.         HUM."  Our first obligation is to keep the foo counters turning.
  684.  
  685.    For more about the legendary foo counters, see {TMRC}.  Almost
  686.    the entire AI staff was involved with TMRC, so it is not clear
  687.    which group introduced the other to the word FOO.
  688.  
  689.    Very probably, hackish `foo' had no single origin and derives
  690.    through all these channels from Yiddish `feh' and/or English
  691.    `fooey'.
  692.  
  693. foobar: n. Another common metasyntactic variable; see {foo}.
  694.    Hackers do *not* generally use this to mean {FUBAR} in
  695.    either the slang or jargon sense.
  696.  
  697. fool: n. As used by hackers, specifically describes a person who
  698.    habitually reasons from obviously or demonstrably incorrect
  699.    premises and cannot be persuaded by evidence to do otherwise; it is
  700.    not generally used in its other senses, i.e., to describe a person
  701.    with a native incapacity to reason correctly, or a clown.  Indeed,
  702.    in hackish experience many fools are capable of reasoning all too
  703.    effectively in executing their errors.  See also {cretin},
  704.    {loser}, {fool file, the}.
  705.  
  706. fool file, the: [USENET] n. A notional repository of all the most
  707.    dramatically and abysmally stupid utterances ever.  There is a
  708.    subgenre of {sig block}s that consists of the header "From the
  709.    fool file:" followed by some quote the poster wishes to represent
  710.    as an immortal gem of dimwittery; for this to be really effective,
  711.    the quote has to be so obviously wrong as to be laughable.  More
  712.    than one USENETter has achieved an unwanted notoriety by being
  713.    quoted in this way.
  714.  
  715. Foonly: n. 1. The {PDP-10} successor that was to have been built by
  716.    the Super Foonly project at the Stanford Artificial Intelligence
  717.    Laboratory along with a new operating system.  The intention was to
  718.    leapfrog from the old DEC timesharing system SAIL was running to a
  719.    new generation, bypassing TENEX which at that time was the ARPANET
  720.    standard.  ARPA funding for both the Super Foonly and the new
  721.    operating system was cut in 1974.  Most of the design team went to
  722.    DEC and contributed greatly to the design of the PDP-10 model KL10.
  723.    2. The name of the company formed by Dave Poole, one of the
  724.    principal Super Foonly designers, and one of hackerdom's more
  725.    colorful personalities.  Many people remember the parrot which sat
  726.    on Poole's shoulder and was a regular companion.  3. Any of the
  727.    machines built by Poole's company.  The first was the F-1 (a.k.a.
  728.    Super Foonly), which was the computational engine used to create
  729.    the graphics in the movie "TRON".  The F-1 was the fastest
  730.    PDP-10 ever built, but only one was ever made.  The effort drained
  731.    Foonly of its financial resources, and they turned towards building
  732.    smaller, slower, and much less expensive machines.  Unfortunately,
  733.    these ran not the popular {TOPS-20} but a TENEX varient called
  734.    Foonex; this seriously limited their market.  Also, the machines
  735.    shipped were actually wire-wrapped engineering prototypes requiring
  736.    individual attention from more than usually competent site
  737.    personnel, and thus had significant reliability problems.  Poole's
  738.    legendary temper and unwillingness to suffer fools gladly did not
  739.    help matters.  By the time of the Jupiter project cancellation in
  740.    1983 Foonly's proposal to build another F-1 was eclipsed by the
  741.    {Mars}, and the company never quite recovered.  See the
  742.    {Mars} entry for the continuation and moral of this story.
  743.  
  744. footprint: n. 1. The floor or desk area taken up by a piece of
  745.    hardware.  2. [IBM] The audit trail (if any) left by a crashed
  746.    program (often in plural, `footprints').  See also
  747.    {toeprint}.
  748.  
  749. for free: adj. Said of a capability of a programming language or
  750.    hardware equipment that is available by its design without needing
  751.    cleverness to implement: "In APL, we get the matrix operations for
  752.    free."  "And owing to the way revisions are stored in this
  753.    system, you get revision trees for free."  Usually it refers to a
  754.    serendipitous feature of doing things a certain way (compare
  755.    {big win}), but it may refer to an intentional but secondary
  756.    feature.
  757.  
  758. for the rest of us: [from the Mac slogan "The computer for the
  759.    rest of us"] adj. 1. Used to describe a {spiffy} product whose
  760.    affordability shames other comparable products, or (more often)
  761.    used sarcastically to describe {spiffy} but very overpriced
  762.    products.  2. Describes a program with a limited interface,
  763.    deliberately limited capabilities, non-orthogonality, inability to
  764.    compose primitives, or any other limitation designed to not
  765.    `confuse' a na"ive user.  This places an upper bound on how far that
  766.    user can go before the program begins to get in the way of the task
  767.    instead of helping accomplish it.  Used in reference to Macintosh
  768.    software which doesn't provide obvious capabilities because it is
  769.    thought that the poor lusers might not be able to handle them.
  770.    Becomes `the rest of *them*' when used in third-party
  771.    reference; thus, "Yes, it is an attractive program, but it's
  772.    designed for The Rest Of Them" means a program that superficially
  773.    looks neat but has no depth beyond the surface flash.  See also
  774.    {WIMP environment}, {Macintrash}, {user-friendly}.
  775.  
  776. fora: pl.n. Plural of {forum}.
  777.  
  778. foreground: [UNIX] vt. To foreground a task is to bring it to
  779.    the top of one's {stack} for immediate processing, and hackers
  780.    often use it in this sense for non-computer tasks. "If your
  781.    presentation is due next week, I guess I'd better foreground
  782.    writing up the design document."
  783.  
  784.    Technically, on a time-sharing system, a task executing in
  785.    foreground is one able to accept input from and return output to
  786.    the user; oppose {background}.  Nowadays this term is primarily
  787.    associated with {{UNIX}}, but it appears first to have been used
  788.    in this sense on OS/360.  Normally, there is only one foreground
  789.    task per terminal (or terminal window); having multiple processes
  790.    simultaneously reading the keyboard is a good way to {lose}.
  791.  
  792. forked: [UNIX; prob. influenced by a mainstream expletive] adj.
  793.    Terminally slow, or dead.  Originated when one system slowed to
  794.    incredibly bad speeds because of a process recursively spawning copies
  795.    of itself (using the UNIX system call `fork(2)') and taking up
  796.    all the process table entries.
  797.  
  798. Fortrash: /for'trash/ n. Hackerism for the FORTRAN language,
  799.    referring to its primitive design, gross and irregular syntax,
  800.    limited control constructs, and slippery, exception-filled
  801.    semantics.
  802.  
  803. fortune cookie: [UNIX] n. A random quote, item of trivia, joke, or
  804.    maxim printed to the user's tty at login time or (less commonly) at
  805.    logout time.  Items from this lexicon have often been used as
  806.    fortune cookies.  See {cookie file}.
  807.  
  808. forum: n. [USENET, GEnie CI$; pl. `fora' or `forums'] Any
  809.    discussion group accessible through a dial-in {BBS}, a
  810.    {mailing list}, or a {newsgroup} (see {network, the}).  A
  811.    forum functions much like a bulletin board; users submit
  812.    {posting}s for all to read and discussion ensues.  Contrast
  813.    real-time chat via {talk mode} or point-to-point personal
  814.    {email}.
  815.  
  816. fossil: n. 1. In software, a misfeature that becomes understandable
  817.    only in historical context, as a remnant of times past retained so
  818.    as not to break compatibility.  Example: the retention of octal as
  819.    default base for string escapes in {C}, in spite of the better
  820.    match of hexadecimal to ASCII and modern byte-addressable
  821.    architectures.  See {dusty deck}.  2. More restrictively, a
  822.    feature with past but no present utility.  Example: the
  823.    force-all-caps (LCASE) bits in the V7 and {BSD} UNIX tty driver,
  824.    designed for use with monocase terminals.  In a perversion of the
  825.    usual backward-compatibility goal, this functionality has actually
  826.    been expanded and renamed in some later {USG UNIX} releases as
  827.    the IUCLC and OLCUC bits.  3. The FOSSIL (Fido/Opus/Seadog
  828.    Standard Interface Level) driver specification for serial-port
  829.    access to replace the {brain-dead} routines in the IBM PC ROMs.
  830.    Fossils are used by most MS-DOS {BBS} software in lieu of
  831.    programming the {bare metal} of the serial ports, as the ROM
  832.    routines do not support interrupt-driven operation or setting
  833.    speeds above 9600.  Since the FOSSIL specification allows
  834.    additional functionality to be hooked in, drivers that use the
  835.    {hook} but do not provide serial-port access themselves are named
  836.    with a modifier, as in `video fossil'.
  837.  
  838. four-color glossies: 1. Literature created by {marketroid}s
  839.    that allegedly containing technical specs but which is in fact as
  840.    superficial as possible without being totally {content-free}.
  841.    "Forget the four-color glossies, give me the tech ref manuals."
  842.    Often applied as an indication of superficiality even when the
  843.    material is printed on ordinary paper in black and white.
  844.    Four-color-glossy manuals are *never* useful for finding a
  845.    problem.  2. [rare] Applied by extension to manual pages that don't
  846.    contain enough information to diagnose why the program doesn't
  847.    produce the expected or desired output.
  848.  
  849. fragile: adj. Syn {brittle}.
  850.  
  851. fred: n. 1. The personal name most frequently used as a
  852.    metasyntactic variable (see {foo}).  Allegedly popular because
  853.    it's easy for a non-touch-typist to type on a standard QWERTY
  854.    keyboard.  Unlike {J. Random Hacker} or `J. Random Loser',
  855.    this name has no positive or negative loading (but see {Mbogo,
  856.    Dr. Fred}).  2. An acronym for `Flipping Ridiculous Electronic
  857.    Device'; other F-verbs may be substituted for `flipping'.
  858.  
  859. frednet: /fred'net/ n. Used to refer to some {random} and
  860.    uncommon protocol encountered on a network.  "We're implementing
  861.    bridging in our router to solve the frednet problem."
  862.  
  863. freeware: n. Free software, often written by enthusiasts and
  864.    distributed by users' groups, or via electronic mail, local
  865.    bulletin boards, {USENET}, or other electronic media.  At one
  866.    time, `freeware' was a trademark of Andrew Fluegelman, the author
  867.    of the well-known MS-DOS comm program PC-TALK III.  It wasn't
  868.    enforced after his mysterious disappearance and presumed death
  869.    in 1984.  See {shareware}.
  870.  
  871. freeze: v. To lock an evolving software distribution or document
  872.    against changes so it can be released with some hope of stability.
  873.    Carries the strong implication that the item in question will
  874.    `unfreeze' at some future date.  "OK, fix that bug and we'll
  875.    freeze for release."
  876.  
  877.    There are more specific constructions on this.  A `feature freeze',
  878.    for example, locks out modifications intended to introduce new
  879.    features; a `code freeze' connotes no more changes at all.
  880.    At Sun Microsystems and elsewhere, one may also hear references to
  881.    `code slush' --- that is, an almost-but-not-quite frozen state.
  882.  
  883. fried: adj. 1. Non-working due to hardware failure; burnt out.
  884.    Especially used of hardware brought down by a `power glitch' (see
  885.    {glitch}), {drop-outs}, a short, or some other electrical
  886.    event.  (Sometimes this literally happens to electronic circuits!
  887.    In particular, resistors can burn out and transformers can melt
  888.    down, emitting noxious smoke.  However, this term is also used
  889.    metaphorically.)  Compare {frotzed}.  2. Of people, exhausted.
  890.    Said particularly of those who continue to work in such a state.
  891.    Often used as an explanation or excuse.  "Yeah, I know that fix
  892.    destroyed the file system, but I was fried when I put it in."
  893.    Esp. common in conjunction with `brain': "My brain is fried
  894.    today, I'm very short on sleep."
  895.  
  896. friode: /fri:'ohd/ [TMRC] n. A reversible (that is, fused or
  897.    blown) diode.  Compare {fried}.
  898.  
  899. fritterware: n. An excess of capability that serves no productive
  900.    end.  The canonical example is font-diddling software on the Mac
  901.    (see {macdink}); the term describes anything that eats huge
  902.    amounts of time for quite marginal gains in function but seduces
  903.    people into using it anyway.
  904.  
  905.  
  906. frob: /frob/ 1. n. [MIT] The {TMRC} definition was "FROB = a
  907.    protruding arm or trunnion"; by metaphoric extension, a `frob' is
  908.    any random small thing; an object that you can comfortably hold in
  909.    one hand; something you can frob.  See {frobnitz}.  2. vt.
  910.    Abbreviated form of {frobnicate}.  3. [from the {MUD} world]
  911.    A command on some MUDs that changes a player's experience level
  912.    (this can be used to make wizards); also, to request {wizard}
  913.    privileges on the `professional courtesy' grounds that one is a
  914.    wizard elsewhere.
  915.  
  916. frobnicate: /frob'ni-kayt/ vt. [Poss. derived from {frobnitz}, and
  917.    usually abbreviated to {frob}, but `frobnicate' is recognized
  918.    as the official full form.] To manipulate or adjust, to tweak.
  919.    One frequently frobs bits or other 2-state devices.  Thus:
  920.    "Please frob the light switch" (that is, flip it), but also
  921.    "Stop frobbing that clasp; you'll break it".  One also sees the
  922.    construction `to frob a frob'.  See {tweak} and {twiddle}.
  923.    Usage: frob, twiddle, and tweak sometimes connote
  924.    points along a continuum.  `Frob' connotes aimless manipulation;
  925.    `twiddle' connotes gross manipulation, often a coarse search for
  926.    a proper setting; `tweak' connotes fine-tuning.  If someone is
  927.    turning a knob on an oscilloscope, then if he's carefully adjusting
  928.    it, he is probably tweaking it; if he is just turning it but looking
  929.    at the screen, he is probably twiddling it; but if he's just doing
  930.    it because turning a knob is fun, he's frobbing it.  The variant
  931.    `frobnosticate' has been recently reported.
  932.  
  933. frobnitz: /frob'nits/, pl. `frobnitzem' /frob'nit-zm/ or
  934.    `frobni' /frob'ni:/ n. An unspecified physical object, a
  935.    widget.  Also refers to electronic black boxes.  This rare form is
  936.    usually abbreviated to `frotz', or more commonly to {frob}.
  937.    Also used are `frobnule' (/frob'n[y]ool/) and `frobule'
  938.    (/frob'yool/).  Starting perhaps in 1979, `frobozz'
  939.    /fruh-boz'/ (plural: `frobbotzim' /fruh-bot'zm/) has also
  940.    become very popular, largely through its exposure as a name via
  941.    {Zork}.  These can also be applied to nonphysical objects, such
  942.    as data structures.
  943.  
  944. frog: alt. `phrog' 1. interj. Term of disgust (we seem to have
  945.    a lot of them).  2. Used as a name for just about anything.  See
  946.    {foo}.  3. n. Of things, a crock.  4. n. Of people, somewhere
  947.    in between a turkey and a toad.  5. `froggy': adj. Similar to
  948.    `bagbiting' (see {bagbiter}), but milder.  "This froggy
  949.    program is taking forever to run!"
  950.  
  951. front end: n. 1. An intermediary computer that does set-up and
  952.    filtering for another (usually more powerful but less friendly)
  953.    machine (a `back end').  2. What you're talking to when you
  954.    have a conversation with someone who is making replies without
  955.    paying attention.  "Look at the dancing elephants!"  "Uh-huh."
  956.    "Do you know what I just said?"  "Sorry, you were talking to the
  957.    front end."  See also {fepped out}.  3. Software that provides
  958.    an interface to another program `behind' it, which may not be as
  959.    user-friendly.  Probably from analogy with hardware front-ends (see
  960.    sense 1) that interfaced with mainframes.
  961.  
  962. frotz: /frots/ 1. n. See {frobnitz}.  2. `mumble frotz': An
  963.    interjection of very mild disgust.
  964.  
  965. frotzed: /frotst/ adj. {down} because of hardware problems.  Compare
  966.    {fried}.  A machine that is merely frotzed may be fixable
  967.    without replacing parts, but a fried machine is more seriously
  968.    damaged.
  969.  
  970. frowney: n. (alt. `frowney face')  See {emoticon}.
  971.  
  972. fry: 1. vi. To fail.  Said especially of smoke-producing hardware
  973.    failures.  More generally, to become non-working.  Usage: never
  974.    said of software, only of hardware and humans.  See {fried},
  975.    {magic smoke}.  2. vt. To cause to fail; to {roach}, {toast},
  976.    or {hose} a piece of hardware.  Never used of software or humans,
  977.    but compare {fried}.
  978.  
  979. FTP: /F-T-P/, *not* /fit'ip/ 1. [techspeak] n. The File
  980.    Transfer Protocol for transmitting files between systems on the
  981.    Internet.  2. vt. To {beam} a file using the File Transfer
  982.    Protocol.  3. Sometimes used as a generic even for file transfers
  983.    not using {FTP}.  "Lemme get a copy of `Wuthering
  984.    Heights' ftp'd from uunet."
  985.  
  986. FUBAR: n. The Failed UniBus Address Register in a VAX.  A good
  987.    example of how jargon can occasionally be snuck past the {suit}s;
  988.    see {foobar}.
  989.  
  990. fuck me harder: excl. Sometimes uttered in response to egregious
  991.    misbehavior, esp. in software, and esp. of misbehaviors which
  992.    seem unfairly persistent (as though designed in by the imp of the
  993.    perverse).  Often theatrically elaborated: "Aiighhh! Fuck me with
  994.    a piledriver and 16 feet of curare-tipped wrought-iron fence
  995.    *and no lubricants*!" The phrase is sometimes heard
  996.    abbreviated `FMH' in polite company.
  997.  
  998.    [This entry is an extreme example of the hackish habit of coining
  999.    elaborate and evocative terms for lossage. Here we see a quite
  1000.    self-conscious parody of mainstream expletives that has become a
  1001.    running gag in part of the hacker culture; it illustrates the
  1002.    hackish tendency to turn any situation, even one of extreme
  1003.    frustration, into an intellectual game (the point being, in this
  1004.    case, to creatively produce a long-winded description of the
  1005.    most anatomically absurd mental image possible --- the short forms
  1006.    implicitly allude to all the ridiculous long forms ever spoken).
  1007.    Scatological language is actually relatively uncommon among
  1008.    hackers, and there was some controversy over whether this entry
  1009.    ought to be included at all.  As it reflects a live usage
  1010.    recognizably peculiar to the hacker culture, we feel it is
  1011.    in the hackish spirit of truthfulness and opposition to all
  1012.    forms of censorship to record it here. --ESR & GLS]
  1013.  
  1014. FUD: /fuhd/ n. Defined by Gene Amdahl after he left IBM to found
  1015.    his own company: "FUD is the fear, uncertainty, and doubt that IBM
  1016.    sales people instill in the minds of potential customers who might
  1017.    be considering [Amdahl] products."  The idea, of course, was to
  1018.    persuade them to go with safe IBM gear rather than with
  1019.    competitors' equipment.  This was traditionally done by promising
  1020.    that Good Things would happen to people who stuck with IBM, but
  1021.    Dark Shadows loomed over the future of competitors' equipment or
  1022.    software.  See {IBM}.
  1023.  
  1024. FUD wars: /fuhd worz/ n. [from {FUD}] Political posturing engaged in
  1025.    by hardware and software vendors ostensibly committed to
  1026.    standardization but actually willing to fragment the market to
  1027.    protect their own shares.  The UNIX International vs. OSF conflict
  1028.    is but one outstanding example.
  1029.  
  1030. fudge: 1. vt. To perform in an incomplete but marginally acceptable
  1031.    way, particularly with respect to the writing of a program.  "I
  1032.    didn't feel like going through that pain and suffering, so I fudged
  1033.    it --- I'll fix it later."  2. n. The resulting code.
  1034.  
  1035. fudge factor: n. A value or parameter that is varied in an ad hoc way
  1036.    to produce the desired result.  The terms `tolerance' and
  1037.    {slop} are also used, though these usually indicate a one-sided
  1038.    leeway, such as a buffer that is made larger than necessary
  1039.    because one isn't sure exactly how large it needs to be, and it is
  1040.    better to waste a little space than to lose completely for not
  1041.    having enough.  A fudge factor, on the other hand, can often be
  1042.    tweaked in more than one direction.  A good example is the `fuzz'
  1043.    typically allowed in floating-point calculations: two numbers being
  1044.    compared for equality must be allowed to differ by a small amount;
  1045.    if that amount is too small, a computation may never terminate,
  1046.    while if it is too large, results will be needlessly inaccurate.
  1047.    Fudge factors are frequently adjusted incorrectly by programmers
  1048.    who don't fully understand their import.  See also {coefficient
  1049.    of X}.
  1050.  
  1051. fuel up: vi. To eat or drink hurriedly in order to get back to
  1052.    hacking.  "Food-p?"  "Yeah, let's fuel up."  "Time for a
  1053.    {great-wall}!"  See also {{oriental food}}.
  1054.  
  1055. fuggly: /fuhg'lee/ adj. Emphatic form of {funky}; funky +
  1056.    ugly).  Unusually for hacker jargon, this may actually derive from
  1057.    black street-jive.  To say it properly, the first syllable should
  1058.    be growled rather than spoken.  Usage: humorous.  "Man, the
  1059.    {{ASCII}}-to-{{EBCDIC}} code in that printer driver is
  1060.    *fuggly*."  See also {wonky}.
  1061.  
  1062. funky: adj. Said of something that functions, but in a slightly
  1063.    strange, klugey way.  It does the job and would be difficult to
  1064.    change, so its obvious non-optimality is left alone.  Often used to
  1065.    describe interfaces.  The more bugs something has that nobody has
  1066.    bothered to fix because workarounds are easier, the funkier it is.
  1067.    {TECO} and UUCP are funky.  The Intel i860's exception handling is
  1068.    extraordinarily funky.  Most standards acquire funkiness as they
  1069.    age.  "The new mailer is installed, but is still somewhat funky;
  1070.    if it bounces your mail for no reason, try resubmitting it."
  1071.    "This UART is pretty funky.  The data ready line is active-high in
  1072.    interrupt mode and active-low in DMA mode."  See {fuggly}.
  1073.  
  1074. funny money: n. 1. Notional `dollar' units of computing time and/or
  1075.    storage handed to students at the beginning of a computer course;
  1076.    also called `play money' or `purple money' (in implicit
  1077.    opposition to real or `green' money).  When your funny money
  1078.    ran out, your account froze and you needed to go to a professor to
  1079.    get more.  Fortunately, the plunging cost of timesharing cycles has
  1080.    made this less common.  The amounts allocated were almost
  1081.    invariably too small, even for the non-hackers who wanted to slide
  1082.    by with minimum work.  In extreme cases, the practice led to
  1083.    small-scale black markets in bootlegged computer accounts.  2. By
  1084.    extension, phantom money or quantity tickets of any kind used as a
  1085.    resource-allocation hack within a system.  Antonym: `real
  1086.    money'.
  1087.  
  1088. fuzzball: [TCP/IP hackers] n. A DEC LSI-11 running a particular
  1089.    suite of homebrewed software written by Dave Mills and assorted
  1090.    co-conspirators, used in the early 1980s for Internet protocol
  1091.    testbedding and experimentation.  These were used as NSFnet
  1092.    backbone sites in its early 56KB-line days; a few are still active
  1093.    on the Internet as of early 1991, doing odd jobs such as network
  1094.    time service.
  1095.  
  1096.